home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / modal-dialog-sample ƒ / InitMac.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  189 b   |  15 lines  |  [TEXT/KAHL]

  1. /*
  2. **    Initialize the Macintosh
  3. */
  4. #include "common.h"
  5.  
  6. void InitMacintosh()
  7. {
  8.     InitGraf(&thePort);
  9.     InitFonts();
  10.     InitWindows();
  11.     InitMenus();
  12.     TEInit();
  13.     InitDialogs(NIL);
  14.     InitCursor();
  15. }